3 examples for git tag

{{ score }}
  # List tags:
git tag

# Create an annotated tag:
git tag -a mytag
        
{{ score }}
  # Tag a specific commit
git tag -a my_tag commit_hash
        
{{ score }}
  # Find the SHA and commiter of a tag
git tag -v sometag